home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-05 | 672 b | 27 lines | [TEXT/KAHL] |
- //|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- //| This file contains the interface to the CKeyControlsDirector class. The
- //| CKeyControlsDirector class supervises the controls dialog.
- //|________________________________________________________________________________
-
- #pragma once
- #include <CDialogDirector.h>
-
- CLASS CArray;
- CLASS CKeyControlsArrayPane;
-
- class CKeyControlsDirector : public CDialogDirector
- {
-
- CArray *array;
- CKeyControlsArrayPane *array_pane;
-
- public:
-
- void IKeyControlsDirector(CDirectorOwner *supervisor);
- void DoCommand(long command);
- void TalkToUser(void);
-
- void BuildArrayFromPrefs(void);
-
- };
-